home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming with VisualAge for Java
/
IBMVJAVA.ISO
/
scrapbook
/
ch02
/
page 2
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-07-23
|
237 b
|
19 lines
int x = 10;
int y = ~x;
System.out.println(y);
x = 3;
y = x & 1;
System.out.println(y);
x = 16;
y = x >> 1;
System.out.println(y);
int test;
do{
System.out.println("In while loop");
test = 0;
}while( test > 0);